+2005-08-17 Øyvind Kolås <pippin@gimp.org>
+
+ * Makefile-mini
+ * babl/Makefile-mini: removed
+
2005-08-17 Øyvind Kolås <pippin@gimp.org>
* configure.ac: added babl/Makefile to AC_CONFIG_FILES().
+++ /dev/null
-# Minimal makefile to test that babl compiles, and for running
-# introspection/sanity tests, will not build an actual library
-
-all:
- make -f Makefile-mini -C babl
- tests/nop
-introspect:
- make -f Makefile-mini -C babl ../tests/introspect
- tests/introspect
-clean:
- make -f Makefile-mini -C babl clean
+++ /dev/null
-# This makeile is used for more rapid test compilations than
-# autofoo allows, it will not build a usable libray though.
-
-
-TARGETS = \
- ../tests/nop \
- ../tests/introspect
-
-default: $(TARGETS)
-
-CFLAGS = -Wall -Werror -g -O0 -I./babl-base -I. -I..
-LDADD = -lm
-
-BABL_OBJECTS= \
- babl.o \
- babl-base/babl-base.o \
- babl-base/babl-base-types.o \
- babl-base/babl-base-components.o \
- babl-base/babl-base-conversions.o \
- babl-base/babl-base-conversions-type.o \
- babl-base/babl-base-conversions-model.o \
- babl-base/babl-base-models.o \
- babl-base/babl-base-pixel-formats.o \
- babl-classes.o \
- babl-component.o \
- babl-conversion.o \
- babl-fish.o \
- babl-image.o \
- babl-introspect.o \
- babl-memory.o \
- babl-model.o \
- babl-pixel-format.o \
- babl-sampling.o \
- babl-sanity.o \
- babl-type.o \
- babl-util.o \
-
-
-../tests/nop: ../tests/nop.c $(BABL_OBJECTS)
- gcc -o $@ $< $(BABL_OBJECTS) -I../babl/ $(LDADD)
-
-../tests/introspect: ../tests/introspect.c $(BABL_OBJECTS)
- gcc -o $@ $< $(BABL_OBJECTS) -I../babl/ $(LDADD)
-
-clean:
- rm -f $(TARGETS) $(BABL_OBJECTS) ../*~ ../*/*~ ../*/*~
-